const runtime.logMaxPackedValue
11 uses
runtime (current package)
mpagealloc.go#L313: if levelLogPages[0] > logMaxPackedValue {
mpagealloc.go#L1023: maxPackedValue = 1 << logMaxPackedValue
mpagealloc.go#L1024: logMaxPackedValue = logPallocChunkPages + (summaryLevels-1)*summaryLevelBits
mpagealloc.go#L1027: uint64(pallocChunkPages<<logMaxPackedValue) |
mpagealloc.go#L1028: uint64(pallocChunkPages<<(2*logMaxPackedValue)))
mpagealloc.go#L1044: ((uint64(max) & (maxPackedValue - 1)) << logMaxPackedValue) |
mpagealloc.go#L1045: ((uint64(end) & (maxPackedValue - 1)) << (2 * logMaxPackedValue)))
mpagealloc.go#L1061: return uint((uint64(p) >> logMaxPackedValue) & (maxPackedValue - 1))
mpagealloc.go#L1069: return uint((uint64(p) >> (2 * logMaxPackedValue)) & (maxPackedValue - 1))
mpagealloc.go#L1078: uint((uint64(p) >> logMaxPackedValue) & (maxPackedValue - 1)),
mpagealloc.go#L1079: uint((uint64(p) >> (2 * logMaxPackedValue)) & (maxPackedValue - 1))
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |